home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / comm / tftb.zip / SHELL.SLT < prev    next >
Text File  |  1992-04-24  |  1KB  |  25 lines

  1. ///////////////////////////////////////////////////////
  2. // PROGRAM: SHELL.SLT                                //
  3. // AUTHOR:  Christopher Saunders                     //
  4. // DATE:    April 25th 1992                          //
  5. //                                                   //
  6. // INFORMATION                                       //
  7. // ~~~~~~~~~~~                                       //
  8. // Now you can shell  out of Telix at the touch of a //
  9. // function  key!  This  script  will also clear the //
  10. // screen  to  prevent  any  ANSI currently  on your //
  11. // screen from "bleeding" into your DOS, thus making //
  12. // the screen some  weird colour.  If you don't know //
  13. // what I mean, try viewing an ANSI screen on a BBS, //
  14. // and then  shell to DOS using  the ALT-J function. //
  15. // You may find  that the  colours have  turned your //
  16. // DOS a  strange  colour!  DON'T  PANIC!  No damage //
  17. // whatsoever has been done...it is just annoying!   //
  18. ///////////////////////////////////////////////////////
  19.  
  20. main()
  21. {
  22. clear_scr();          // Clear the screen (to prevent bleeding)
  23. dos("COMMAND.COM");   // Shell to DOS
  24. }
  25.